home *** CD-ROM | disk | FTP | other *** search
- import java.net.URL;
-
- class myURL {
- public static void main(String[] var0) throws Exception {
- URL var1 = new URL("http://coop.chuvashia.edu");
- System.out.println("Protocol: " + var1.getProtocol());
- System.out.println("Port: " + var1.getPort());
- System.out.println("Host: " + var1.getHost());
- System.out.println("File: " + var1.getFile());
- System.out.println("Ext: " + var1.toExternalForm());
- }
- }
-